home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / internet / weblibev / wltestdp.dpr < prev    next >
Encoding:
Text File  |  1995-10-31  |  813 b   |  30 lines

  1. { ============================================================================
  2.   Copyright 1995 by Potomac Software, Inc. Use of this material is subject to
  3.   the terms and conditions of the software license agreement.
  4.   ============================================================================ }
  5.  
  6. program Wltestdp;
  7.  
  8. uses
  9.   Forms,
  10.   WinProcs,
  11.   WinTypes,
  12.   Maindlg in 'MAINDLG.PAS' {MainDlgForm},
  13.   Htmlpars in 'HTMLPADP.PAS',
  14.   Weblib in 'WEBLIBDP.PAS',
  15.   Weblibapidlg in 'WLAPIDLG.PAS',
  16.   ApiDlgConstants in 'CONSTANT.PAS';
  17.  
  18. {$R *.RES}
  19.  
  20. begin
  21.     if not WLStartup then
  22.         Application.MessageBox('WLStartup','Error',MB_OK);
  23.  
  24.       Application.CreateForm(TMainDlgForm, MainDlgForm);
  25.   Application.Run;
  26.  
  27.   if not WLCleanup then
  28.         Application.MessageBox('WLCleanup','Error',MB_OK);
  29. end.
  30.